home *** CD-ROM | disk | FTP | other *** search
/ MacHome 1999 February/March / MacHome CD (February and March 1999).iso / Edutainment / INFOHIGHWAYDEMOS / demo / GEN.DCR / 00563.ls < prev    next >
Encoding:
Text File  |  1998-12-02  |  280 b   |  16 lines

  1. on enterFrame
  2.   set ro to rollOver()
  3.   set thereIsRoll to 0
  4.   if (ro >= 45) and (ro <= 51) then
  5.     set thereIsRoll to 1
  6.     cursor([member "mousePointer", member "mousePointerMask"])
  7.   end if
  8.   if thereIsRoll = 0 then
  9.     cursor(-1)
  10.   end if
  11. end
  12.  
  13. on exitFrame
  14.   checkTimer()
  15. end
  16.